home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / modula-3 / m3-3.5 / m3-3 / usr / local / modula3-3.5.4-B / lib / elisp / m3setup.el < prev    next >
Encoding:
Text File  |  1995-11-16  |  1.9 KB  |  43 lines

  1. ; This file is part of m3ide, a simple development environment for M3    
  2. ; Copyright (C) 1995 Michel Dagenais                                     
  3. ;                                                                        
  4. ; This library is free software; you can redistribute it and/or          
  5. ; modify it under the terms of the GNU Library General Public            
  6. ; License as published by the Free Software Foundation; either           
  7. ; version 2 of the License, or (at your option) any later version.       
  8. ;                                                                        
  9. ; This library is distributed in the hope that it will be useful,        
  10. ; but WITHOUT ANY WARRANTY; without even the implied warranty of         
  11. ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU      
  12. ; Library General Public License for more details.                       
  13. ;                                                                        
  14. ; You should have received a copy of the GNU Library General Public      
  15. ; License along with this library; if not, write to the Free             
  16. ; Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     
  17. ;                                                                        
  18. ; For more information on this program, contact Michel Dagenais at       
  19. ; dagenais@vlsi.polymtl.ca or Electrical Eng. Dept., Ecole Polytechnique 
  20. ; P.O. Box 6079, Station A, Montreal, Quebec, Canada, H3C 3A7.           
  21.  
  22. ;
  23. ; By loading this file, m3ide will be used automatically when files
  24. ; ending in .i3, .m3, .ig, .mg or .fv are used.
  25. ;
  26.  
  27. (autoload 'm3-ide-mode "m3ide")
  28. (autoload 'formsvbt-ide-mode "m3ide")
  29. (autoload 'm3makefile-ide-mode "m3ide")
  30. (setq auto-mode-alist
  31.   (append
  32.     '(
  33.       ("\\.ig$" . m3-ide-mode)
  34.       ("\\.mg$" . m3-ide-mode)
  35.       ("\\.i3$" . m3-ide-mode)
  36.       ("\\.m3$" . m3-ide-mode)
  37.       ("\\.fv$" . formsvbt-ide-mode)
  38.       ("m3makefile$" . m3makefile-ide-mode)
  39.     )
  40.     auto-mode-alist
  41.   )
  42. )
  43.